home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19980901-19981211 / 000222_news@newsmaster….columbia.edu _Tue Oct 27 11:41:29 1998.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id LAA29454
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Tue, 27 Oct 1998 11:41:29 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id LAA16754
  7.     for kermit.misc@watsun; Tue, 27 Oct 1998 11:41:28 -0500 (EST)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: newbie question:atdt command works but not using dial command
  12. Date: 27 Oct 1998 16:41:28 GMT
  13. Organization: Columbia University
  14. Lines: 59
  15. Message-ID: <714t3o$deh$1@apakabar.cc.columbia.edu>
  16. References: <363441A7.90910EC@siemens.com.sg> <7126lf$lb7$1@apakabar.cc.columbia.edu> <36359FA8.B12A7FAD@siemens.com.sg>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:9422
  19.  
  20. In article <36359FA8.B12A7FAD@siemens.com.sg>,
  21. Muljawan Hendrianto  <muljawan.hendrianto@siemens.com.sg> wrote:
  22. : Frank da Cruz wrote:
  23. : > This indicates a total failure to communicate with the modem.  The manual
  24. : > goes into great detail about how to set up and troubleshoot modem
  25. : > connections.
  26. : >
  27. : > You didn't show the sequence of commands you used.  It should have
  28. : > been:
  29. : >
  30. : >   set modem type motorola-montana
  31. : >   set line /dev/ttyS1
  32. : >   set speed 38400
  33. : >   dial 97407554
  34. : >
  35. : > in that order; the order is important.
  36. : >
  37. : > A couple other hints:
  38. : >
  39. : >  1. Use "set dial display on" to monitor the dialog between Kermit and
  40. : >     the modem.
  41. : Thanks Frank,
  42. : After I did "set dial display on", I saw the dialog between Kermit and
  43. : the modem.
  44. : It seems that I init string is not working with my modem , since I don't
  45. : use the motorola-montana. I did follow the step you mentioned above.
  46. :
  47. OK, so it is not a "total failure to communicate with the modem", but a
  48. case of using an inappropriate built-in modem type, so that the first
  49. command sent to the modem is invalid:
  50.  
  51. : ATQ0E1X4\K5\V1
  52. : ERROR
  53.  
  54. : My modem is Motorola Codex 3265, so it seems that I need to put in the
  55. : right init-string.  How can I do that?
  56. Evidently the Motorola Codex 3265 is not compatible with the Montana.
  57.  
  58. Please pick up C-Kermit 6.1 Beta.05 if you don't have it already:
  59.  
  60.   http://www.columbia.edu/kermit/ck61.html
  61.  
  62. Then:
  63.  
  64.  1. Try "set modem type motorola fastalk".  This is another Motorola model;
  65.     maybe its commands are compatible with the Codex 3265.  If so, please
  66.     let me know.
  67.  
  68.  2. Consult your modem manual to find out what its commands are and then
  69.     follow the directions in "Using C-Kermit", 2nd Edition, pp.87-92, for
  70.     modifying a modem definition or adding a new one.
  71.  
  72.  3. Send me the commands for your modem and I'll add a built-in type for
  73.     it to the next releases of C-Kermit and K95.
  74.  
  75. - Frank